/*

Displays a message to the player when it's touched.

Variables:

this.signmessage = "The message you want to display";
   
Usage (Level NPC):

function onCreated() {
  this.signmessage = "Hello World!\nNice day isn't it?";
  this.join("object_sign");
}   
   
*/

function onCreated() {
  this.setshape(1, 32, 32);
}

function onPlayerTouchsMe() {
  say2(this.signmessage);
}
